home *** CD-ROM | disk | FTP | other *** search
/ LG Super CD / LG Super CD.iso / bitpim / bitpim-0.9.10-setup.exe / {app} / resources / pbpl-view.xy < prev    next >
Encoding:
Text File  |  2006-12-06  |  591 b   |  29 lines

  1. Current View
  2. <html>
  3. <head></head>
  4. <body>
  5.  
  6. <py-line>rownum=-1</py-line>
  7.  
  8. <table class="table">
  9. <tr class="row">
  10. <py-open>for h in currentcolumns:</py-open>
  11. <th class="columnheader">${h}</th>
  12. <py-close/>
  13. </tr>
  14.  
  15. <py-open>for key in rowkeys:</py-open>
  16. <py-line>rownum+=1</py-line>
  17. <py-line>entry=data[key]</py-line>
  18. <tr class="row" class="${('roweven', 'rowodd')[rownum%2]}">
  19. <py-open>for h in currentcolumns:</py-open>
  20. <td class="item" class="${h}">${phonebook.htmlify(phonebook.getdata(h, entry, " "))}</td>
  21. <py-close/>
  22. </tr>
  23. <py-close/>
  24.  
  25.  
  26. </table>
  27.  
  28. </body>
  29. </html>